home *** CD-ROM | disk | FTP | other *** search
-
- #include <dos.h>
- main()
- {
- extern int _TSIZE; /* size of program in paragraphs */
- union REGSS input,output;
-
- input.x.ax = 0x3112; /* 31 -> AH and Return Code */
- input.x.dx = _TSIZE; /* program size (Lattice) */
- intdoss(&input,&output); /* function call 31 */
- }
-